.mySlides {display: block; float:right;}
.mySlides img {vertical-align: middle;max-height: 313px; width:100%;}
.mySlides p {font-style: italic;}
/* Slideshow container */
.slideshow-container {
  position: relative;
  float:right;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}  

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}